home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / paragen2.zip / VIDLIB.H < prev    next >
C/C++ Source or Header  |  1991-03-28  |  2KB  |  56 lines

  1. #define VIDEO_IO   0x10
  2. #define CUR_POS    2
  3. #define SCROLL_UP  6
  4. #define NUMSPACES  68
  5.  
  6. typedef enum Boolean {
  7.     NO,
  8.     YES,
  9. } BOOLEAN;
  10.  
  11. typedef struct Process {
  12.     char Item[3];
  13.     char Message[60];
  14.    int (*Execute)(void);
  15. } PROCESS;    
  16.  
  17. void GoToRC(unsigned Row, unsigned Col);
  18. void ClearArea(unsigned Row,unsigned Col,unsigned NumRows,unsigned NumCols);
  19. void DrawBox(unsigned Row,unsigned Col,unsigned NumRows,unsigned NumCols,char *Title);
  20. void PrintText(unsigned Row,unsigned Col,char *Text);
  21. void CenterText(unsigned Row,unsigned Col, unsigned Cols,char *Text);
  22. char *GetString(unsigned Row,unsigned Col,unsigned Length,char *String,BOOLEAN UpperCase);
  23. int ValidEvent(char *Choice);
  24. void PrintFText(BOOLEAN GetChar,unsigned Row,unsigned Col, char *PrintFormat, ...);
  25. void UpdateParadoxInfo(BOOLEAN UseInfo);
  26. void DisplayRecord(VLIBTABLEENTRY *Record);
  27. void ClearRecord(void);
  28. void ClearMessageArea(void);
  29. int EditRec(VLIBTABLEENTRY *Record,BOOLEAN EditOnly);
  30. int SrchRec(VLIBTABLEENTRY *Record,BOOLEAN KeyOrFld);
  31. int VLIBError1(int ErrCode);
  32.  
  33. int AddRecord(void);
  34. int CloseFile(void);
  35. int SearchFFirst(void);
  36. int DecryptFile(void);
  37. int DeleteRecord(void);
  38. int DeleteFile(void);
  39. int EditRecord(void);
  40. int FirstRecord(void);
  41. int GotoRecord(void);
  42. int LastRecord(void);
  43. int MergeFile(void);
  44. int EncryptFile(void);
  45. int NextRecord(void);
  46. int OpenFile(void);
  47. int PreviousRecord(void);
  48. int Quit(void);
  49. int RenameFile(void);
  50. int SearchFNext(void);
  51. int SearchKFirst(void);
  52. int SearchKNext(void);
  53. int CreateFile(void);
  54. int EmptyFile(void);
  55. int CopyFile(void);
  56.